home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / lang / fpc09905c.lha / fpc / inc / innr.inc < prev    next >
Text File  |  1998-09-21  |  2KB  |  65 lines

  1. {
  2.     $Id: innr.inc,v 1.2 1998/05/12 10:42:45 peter Exp $
  3.     This file is part of the Free Pascal run time library and compiler.
  4.     Copyright (c) 1993,98 by the Free Pascal development team
  5.  
  6.     See the file COPYING.FPC, included in this distribution,
  7.     for details about the copyright.
  8.  
  9.     This program is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12.  
  13.  **********************************************************************}
  14.  
  15. const
  16.    in_lo_word = 1;
  17.    in_hi_word = 2;
  18.    in_lo_long = 3;
  19.    in_hi_long = 4;
  20.    { to be able to compile with ord intern or not }
  21.    in_ord_char = 5;
  22.    in_ord_x = 5;
  23.    in_length_string = 6;
  24.    in_chr_byte = 7;
  25.    in_inc_byte = 8;
  26.    in_inc_word = 9;
  27.    in_inc_dword = 10;
  28.    in_dec_byte = 11;
  29.    in_dec_word = 12;
  30.    in_dec_dword = 13;
  31.    in_write_x = 14;
  32.    in_writeln_x = 15;
  33.    in_read_x = 16;
  34.    in_readln_x = 17;
  35.    in_concat_x = 18;
  36.    in_assigned_x = 19;
  37.    in_str_x_string = 20;
  38.    in_ofs_x = 21;
  39.    in_sizeof_x = 22;
  40.    in_typeof_x = 23;
  41.    in_val_x = 24;
  42.    in_reset_x = 25;
  43.    in_rewrite_x = 26;
  44.    in_low_x = 27;
  45.    in_high_x = 28;
  46.    in_seg_x = 29;
  47.    in_pred_x = 30;
  48.    in_succ_x = 31;
  49.    in_reset_typedfile = 32;
  50.    in_rewrite_typedfile = 33;
  51.    in_settextbuf_file_x = 34;
  52.    in_inc_x = 35;
  53.    in_dec_x = 36;
  54.  
  55. {
  56.   $Log: innr.inc,v $
  57.   Revision 1.2  1998/05/12 10:42:45  peter
  58.     * moved getopts to inc/, all supported OS's need argc,argv exported
  59.     + strpas, strlen are now exported in the systemunit
  60.     * removed logs
  61.     * removed $ifdef ver_above
  62.  
  63. }
  64.  
  65.